home *** CD-ROM | disk | FTP | other *** search
/ 3D Game Programming All in One / 3D Game Programming All in One Disc.iso / 3D2E / show / ui / tsShowThreadControlDlg.gui < prev    next >
Text File  |  2005-11-23  |  7KB  |  269 lines

  1. //-----------------------------------------------------------------------------
  2. // Torque Game Engine
  3. // 
  4. // Copyright (c) 2001 GarageGames.Com
  5. //-----------------------------------------------------------------------------
  6.  
  7. //--- OBJECT WRITE BEGIN ---
  8. new GuiControl(TSShowThreadControlDlg) {
  9.    profile = "GuiDialogProfile";
  10.     horizSizing = "right";
  11.     vertSizing = "bottom";
  12.     position = "0 0";
  13.     extent = "640 480";
  14.     minExtent = "8 8";
  15.     visible = "True";
  16.     setFirstResponder = "False";
  17.     modal = "False";
  18.     helpTag = "0";
  19.  
  20.     new GuiWindowCtrl() {
  21.         profile = "GuiWindowProfile";
  22.         horizSizing = "right";
  23.         vertSizing = "bottom";
  24.         position = "451 403";
  25.         extent = "327 187";
  26.         minExtent = "8 8";
  27.         visible = "True";
  28.         setFirstResponder = "False";
  29.         modal = "True";
  30.         helpTag = "0";
  31.         text = "Thread Control";
  32.         resizeWidth = "True";
  33.         resizeHeight = "True";
  34.         canMove = "True";
  35.         canClose = "True";
  36.         canMinimize = "True";
  37.         canMaximize = "True";
  38.         minSize = "50 50";
  39.         closeCommand = "Canvas.popDialog(TSShowThreadControlDlg);";
  40.  
  41.         new GuiTextCtrl() {
  42.             profile = "GuiTextProfile";
  43.             horizSizing = "right";
  44.             vertSizing = "bottom";
  45.             position = "5 30";
  46.             extent = "42 18";
  47.             minExtent = "8 8";
  48.             visible = "True";
  49.             setFirstResponder = "False";
  50.             modal = "True";
  51.             helpTag = "0";
  52.             text = "Threads:";
  53.                 FONT = "12 244 Arial";
  54.                 justify = "center";
  55.         };
  56.         new GuiScrollCtrl() {
  57.             profile = "GuiScrollProfile";
  58.             horizSizing = "right";
  59.             vertSizing = "bottom";
  60.             position = "5 50";
  61.             extent = "50 100";
  62.             minExtent = "8 8";
  63.             visible = "True";
  64.             setFirstResponder = "False";
  65.             modal = "True";
  66.             helpTag = "0";
  67.             willFirstRespond = "True";
  68.             hScrollBar = "alwaysOff";
  69.             vScrollBar = "alwaysOn";
  70.             constantThumbHeight = "False";
  71.  
  72.             new GuiTextListCtrl(threadList) {
  73.                 profile = "GuiTextArrayProfile";
  74.                 horizSizing = "right";
  75.                 vertSizing = "bottom";
  76.                 position = "0 0";
  77.                 extent = "50 16";
  78.                 minExtent = "8 8";
  79.                 visible = "True";
  80.                 setFirstResponder = "False";
  81.                 modal = "True";
  82.                 command = "showUpdateThreadControl();";
  83.                 helpTag = "0";
  84.                 enumerate = "False";
  85.                 resizeCell = "True";
  86.                 columns = "0";
  87.                     noDuplicates = "false";
  88.             };
  89.         };
  90.         new GuiTextCtrl() {
  91.             profile = "GuiTextProfile";
  92.             horizSizing = "right";
  93.             vertSizing = "bottom";
  94.             position = "90 30";
  95.             extent = "57 18";
  96.             minExtent = "8 8";
  97.             visible = "True";
  98.             setFirstResponder = "False";
  99.             modal = "True";
  100.             helpTag = "0";
  101.             text = "Sequences:";
  102.                 FONT = "12 244 Arial";
  103.         };
  104.         new GuiScrollCtrl() {
  105.             profile = "GuiScrollProfile";
  106.             horizSizing = "right";
  107.             vertSizing = "bottom";
  108.             position = "60 50";
  109.             extent = "150 100";
  110.             minExtent = "8 8";
  111.             visible = "True";
  112.             setFirstResponder = "False";
  113.             modal = "True";
  114.             helpTag = "0";
  115.             willFirstRespond = "True";
  116.             hScrollBar = "dynamic";
  117.             vScrollBar = "alwaysOn";
  118.             constantThumbHeight = "False";
  119.                 text = "Sequences:";
  120.  
  121.             new GuiTextListCtrl(sequenceList) {
  122.                 profile = "GuiTextArrayProfile";
  123.                 horizSizing = "right";
  124.                 vertSizing = "bottom";
  125.                 position = "0 0";
  126.                 extent = "150 16";
  127.                 minExtent = "8 8";
  128.                 visible = "True";
  129.                 setFirstResponder = "False";
  130.                 modal = "True";
  131.                 command = "showSelectSequence();";
  132.                 altCommand = "showSelectSequence();";
  133.                 helpTag = "0";
  134.                 enumerate = "False";
  135.                 resizeCell = "True";
  136.                 columns = "0";
  137.                     noDuplicates = "false";
  138.             };
  139.         };
  140.         new GuiButtonCtrl() {
  141.             profile = "GuiButtonProfile";
  142.             horizSizing = "right";
  143.             vertSizing = "bottom";
  144.             position = "230 27";
  145.             extent = "84 16";
  146.             minExtent = "8 8";
  147.             visible = "True";
  148.             setFirstResponder = "False";
  149.             modal = "True";
  150.             command = "showPlay(threadList.getValue());";
  151.             helpTag = "0";
  152.             text = "Play";
  153.         };
  154.         new GuiTextCtrl(showScaleValue) {
  155.             profile = "GuiTextProfile";
  156.             horizSizing = "right";
  157.             vertSizing = "bottom";
  158.             position = "133 162";
  159.             extent = "8 18";
  160.             minExtent = "8 8";
  161.             visible = "True";
  162.             setFirstResponder = "False";
  163.             modal = "True";
  164.             helpTag = "0";
  165.                 FONT = "12 244 Arial";
  166.         };
  167.         new GuiButtonCtrl() {
  168.             profile = "GuiButtonProfile";
  169.             horizSizing = "right";
  170.             vertSizing = "bottom";
  171.             position = "230 47";
  172.             extent = "84 16";
  173.             minExtent = "8 8";
  174.             visible = "True";
  175.             setFirstResponder = "False";
  176.             modal = "True";
  177.             command = "showStop(threadList.getValue());";
  178.             helpTag = "0";
  179.             text = "Stop";
  180.         };
  181.         new GuiButtonCtrl() {
  182.             profile = "GuiButtonProfile";
  183.             horizSizing = "right";
  184.             vertSizing = "bottom";
  185.             position = "230 79";
  186.             extent = "84 16";
  187.             minExtent = "8 8";
  188.             visible = "True";
  189.             setFirstResponder = "True";
  190.             modal = "True";
  191.             command = "Canvas.pushDialog(TSShowTransitionDlg,199);";
  192.             helpTag = "0";
  193.             text = "Transition...";
  194.         };
  195.         new GuiButtonCtrl() {
  196.             profile = "GuiButtonProfile";
  197.             horizSizing = "right";
  198.             vertSizing = "bottom";
  199.             position = "230 110";
  200.             extent = "84 16";
  201.             minExtent = "8 8";
  202.             visible = "True";
  203.             setFirstResponder = "False";
  204.             modal = "True";
  205.             command = "showNewThread();";
  206.             helpTag = "0";
  207.             text = "New Thread";
  208.         };
  209.         new GuiButtonCtrl() {
  210.             profile = "GuiButtonProfile";
  211.             horizSizing = "right";
  212.             vertSizing = "bottom";
  213.             position = "230 129";
  214.             extent = "84 16";
  215.             minExtent = "8 8";
  216.             visible = "True";
  217.             setFirstResponder = "False";
  218.             modal = "True";
  219.             command = "showDeleteThread(threadList.getValue());";
  220.             helpTag = "0";
  221.             text = "Delete Thread";
  222.         };
  223.         new GuiSliderCtrl(threadPosition) {
  224.             profile = "GuiDefaultProfile";
  225.             horizSizing = "right";
  226.             vertSizing = "bottom";
  227.             position = "27 160";
  228.             extent = "100 20";
  229.             minExtent = "8 8";
  230.             visible = "True";
  231.             setFirstResponder = "False";
  232.             modal = "True";
  233.             variable = "value";
  234.             helpTag = "0";
  235.             range = "0.000000 1.000000";
  236.             ticks = "5";
  237.             value = "0";
  238.                 tab = "true";
  239.         };
  240.         new GuiButtonCtrl() {
  241.             profile = "GuiButtonProfile";
  242.             horizSizing = "right";
  243.             vertSizing = "bottom";
  244.             position = "230 161";
  245.             extent = "84 16";
  246.             minExtent = "8 8";
  247.             visible = "True";
  248.             setFirstResponder = "False";
  249.             modal = "True";
  250.             command = "showScale.setText(\"\"); Canvas.pushDialog(TSShowEditScale,199);";
  251.             helpTag = "0";
  252.             text = "Edit Scale";
  253.         };
  254.         new GuiTextCtrl(transitionSignal) {
  255.             profile = "GuiTextProfile";
  256.             horizSizing = "right";
  257.             vertSizing = "bottom";
  258.             position = "10 162";
  259.             extent = "8 18";
  260.             minExtent = "8 8";
  261.             visible = "True";
  262.             setFirstResponder = "True";
  263.             modal = "True";
  264.             helpTag = "0";
  265.         };
  266.     };
  267. };
  268. //--- OBJECT WRITE END ---
  269.